* {
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
}

body {
  font-family: 'Lato', sans-serif;
  background: #eee;
  position: relative;
  min-height:100vh;
}

.am-header {
  width: 80px;
  height: 100vh;
  /*background: var(--theme-color); */
  /*box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);*/
  position: fixed;
  z-index: 90;
  background: #39393c;
  right:0;
}

/*.sticky {*/
  /*position: fixed;*/
  /*top: 0;*/
  /*z-index: 100;*/
  /*animation: slideDown .4s forwards;*/
/*}*/

/* Logo */
.logo {
  height: 42px;
  width: 120px;
  position: absolute;
  text-align: center;
  line-height: 42px;
  color: #fff;
  font-size: 16pt;
  vertical-align: middle;
  left: 25px;
  top: 2px;
  z-index: 5;

}

/* Search Trigger */

.search-trigger {
  width: 36px;
  height: 36px;
  display: inline-block;

  position: absolute;
  right: 65px;
  top: 6px;
  line-height: 36px;
  color: #fff;
  z-index: 6;
  cursor: pointer;

}

#search-toggle {
  display: none;
}

.s-wrapper {

  width: 36px;
  height: 36px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  box-sizing: border-box;

}

#circle {
  position: relative;
  border: 2px white solid;
  width: 15px; /* 160*/
  height: 15px;
  top: 2px;
  left: 8px;
  border-radius: 50%;
  transition: all 0.3s linear;
}

#bar {
  position: relative;
  margin-top: 0px;
  height: 12px;
  left: 16px;
  width: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s linear;
}

.searchopen #circle {
  width: 25px;
  height: 0px;
  border: 1px solid white;
  border-radius: 2px;
  left: 3px;
  top: 13px;
  transform: rotate(90deg);
}

.searchopen #bar {
  height: 25px;
  top: 0px;
  transform: rotate(-90deg);
}

/* Search Box*/
.search-container {
  height: 36px;
  position: absolute;
  display: inline-block;
  width: 180px;
  top: -20px;
  background: transparent;
  transition: .4s;
  opacity: 0;
  margin-left: 20px;

}

.searchNow {
  top: 6px;
  opacity: 1;
}

.am-container {
  width: 260px;
  height: 100vh;
  font-family: 'Assistant', sans-serif;
  background: var(--theme-color);
  overflow: hidden;
  z-index: 99;
  position: fixed;
  top: 48px;
  right: -260px;
}

.open,
.am-container {
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}

.open {
  right: 0;

}

/* AM Menu Themes */

.default-theme {

}


.list-item li {
  list-style: none;

}

.has-sub,
.list-item li a {
  padding: 10px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
  font-weight:300;
  outline: 0;
  text-align: right;
  padding-right: 50px;
  position: relative;
}

.has-sub:hover,
.list-item li a:hover {
  background: rgba(0, 0, 0, 0.10);
  color: #fddd8c;

}

.has-sub {
  cursor: pointer;
}

/*.has-sub:after {*/
  /*font-family: FontAwesome;*/
  /*content: "\f105";*/
  /*float: right;*/
  /*padding-right: 20px;*/
  /*margin-top: 7px;*/
  /*font-size: 16px;*/

/*}*/
.has-sub:before {
  font-family: FontAwesome;
  content: "\f104";
  top: 11px;
  font-size: 20px;
  position: absolute;
  left: 90px;

}

.has-sub + .sub-items {
  display: none;

}

.am-container h3 {
  color: #fff;
  font-family: 'Marmelad', sans-serif;
  text-shadow: 1px 0.01px rgba(0, 0, 0, 0.1);
  font-weight: 400;
  padding: 10px;
  font-size: 18px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.096);

}

.has-sub .item-icon,
.item-icon {
  display: inline-block;
  border: 0;
  width: 32px;
  height: 32px;
  position: relative;
  vertical-align: middle;
  padding-right: 20px;
  text-align: left;

}

.item-icon img {
  width: 32px;
  height: 32px;

}

/* Animations*/

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: .5;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: .5;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}


@keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0%);
  }
}

/* background dimmy effect */

.dim-overlay {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-duration: .8s;
  -webkit-animation-duration: .8s;
  display: none;
}

.dim-overlay:before {
  content: "";
  background-color: rgba(255, 255, 255, .6);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

/* Glass Effect*/
.glass {
  box-shadow: inset 0 8px 8px rgba(255, 255, 255, 0.4), inset 0 -15px 30px rgba(0, 0, 0, 0.1), 0 5px 30px rgba(0, 0, 0, 0.1);
}

.light-box,
li.light-box {
  width: 330px;
  height: 240px;
  position: fixed;
  border: 4px solid #f2f2f2;
  border-radius: 6px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  top: 50%;
  margin-top: -120px;
  left: 50%;
  margin-left: -165px;
  z-index: 99;
  animation: bounceIn .7s forwards;
}

.light-box img,
li.light-box img {
  width: 330px;
  height: 240px;
  object-fit: cover;

}

.close-light-box {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 32px;
  height: 32px;
  right: 5px;
  top: 5px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  font-size: 26px;
  color: rgba(255, 255, 255, 0.8);
}

.close-light-box:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(0, 0, 0, 0.8);
  transition: .3s;
}

/* Menu Icon */

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 50px;
  border-radius: 30px;
  position: absolute;
  /*right: -12px;*/
  /*top: -13px;*/
  right: -10px;
  top:10px;
  overflow: hidden;
  /*background: rgba(0,0,0,0.6);*/
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #FFDD8A;
  stroke-width: 4;
  stroke-linecap: round;

}

.ham1 .top {
  stroke-dasharray: 40 139;

}

.ham1 .bottom {
  stroke-dasharray: 40 180;
}

.ham1.active .top {
  stroke-dashoffset: -98px;
}

.ham1.active .bottom {
  stroke-dashoffset: -138px;
}

.menu-trigger {
  display: block;
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  cursor: pointer;
  right: 25px;
  top: 64px;
  z-index:100;
}
.menu-logo{
  position: absolute;
  width: 42px;
  left:19px;
  top:30px;
}
.menu-logo img{
  width: 100%;
}
.menu-copyright{
  writing-mode: vertical-rl;
  position: absolute;
  bottom: 20px;
  width: 14px;
  left:40px;
  font-size: 14px;
  color: #9E9D9A;
  letter-spacing: 2px;
}
.menu-small-search{
  font-size: 16px;
  color: #9E9D9A;
  top:130px;
  left:25px;
  position: absolute;
  font-weight:bolder;
  border: 1px solid #9E9D9A;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
}

/* Search Box*/

.search-box {
  position: relative;
}
.btn-search{
  font-size: 16px;
  position: absolute;
  right: 0px;
  top:10px;
  cursor: pointer;
  color: #9b9b9b;
  transition: all 0.6s;
}
.btn-search:hover{
  color: #FFDD8A;
}

.search-icon, .go-icon {
  position: absolute;
  top: 0;
  height: 36px;
  width: 36px;
  line-height: 36px;
  text-align: center;
  /*color: rgba(255, 255, 255, 0.9);*/
  color: transparent;
}

.search-icon {
  left: 20px;
  pointer-events: none;
  font-size: 18px;
  will-change: transform;

  transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -moz-transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.si-rotate {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.search-border {
  display: block;
  width: 180px;
  height: 36px;
  margin-left: 10px;

}

.border {
  fill: none;
  stroke: #818085;
  stroke-width: 4;
  stroke-miterlimit: 10;
}

.border {
  stroke-dasharray: 740;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
  -webkit-transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
  -moz-transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
  -o-transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
}

.border-searching .border {
  stroke-dasharray: 740;
  stroke-dashoffset: 459;
  transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
  -webkit-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
  -moz-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
  -o-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
}

#search {
  position: absolute;
  border: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 150px;
  border-radius: 120px;
  background: rgba(255, 255, 255, 0);
  padding: 0 30px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.015em;
  outline: none;

}

#search::-webkit-input-placeholder {
  color: #818085;
}

#search::-moz-placeholder {
  color: #818085;
}

#search:-ms-input-placeholder {
  color: #818085;
}

#search:-moz-placeholder {
  color: #818085;
}

#search::-moz-selection {
  color: #818085;
  background: rgba(0, 0, 0, 0.25);
}

#search::selection {
  color: #818085;
  background: rgba(0, 0, 0, 0.25);
}

/* Virtual Page */
.virtual-page {
  position: fixed;
  height: 100vh;
  width: 100%;
  background: #222;
  z-index: 500;
  overflow: auto !important;
  top: 0;
  left: 0;

}

.virtual-header {
  height: 48px;
  background: var(--theme-color);
  width: 100%;
  box-sizing: border-box;
  color: #999;
  position: absolute;
  top: 0;
  line-height: 48px;
  font-size: 18px;
  font-weight:300;

}

.close-vPage {

  width: 36px;
  height: 36px;
  line-height: 36px;
  position: absolute;
  top: 6px;
  left: 10px;
  text-align: center;

}

.sub-items {
  /*padding: 10px;*/
  overflow: auto;

}

.jam {
  overflow: hidden;
  /*-webkit-scrollbar: display: none;*/

}

.dropdown,
.virtual-page ul li a {
  padding: 15px 10px 15px 60px;
  font-size: 15px;
  font-weight:300;
  display: block;
  /*border-bottom: 1px dotted #ccc;*/
  color: #999;
}

.dropdown:hover,
.virtual-page ul li a:hover {
  background: rgba(0, 0, 0, 0.13);

}

.virtual-page a {
  text-decoration: none;
  color: #666;
}

.virtual-page .sub-items {

}

/* Drop Downs */
.dropdown {
  font-weight: 700;
  cursor: pointer;

}

.dropdown + .dropdown-items {
  height: 0;
  overflow: hidden;
}

.dropdown:after {
  font-family: FontAwesome;
  content: "\f078";
  float: right;
  font-weight: 400;
  font-size: 14px;
  margin-right: 15px;
  transition: 0.360s;
  -webkit-transition: 0.360s;
  -moz-transition: 0.360s;

}

.down:after {
  transform: rotateZ(180deg);
  -webkit-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  transition: 0.360s;
  -webkit-transition: 0.360s;
  -moz-transition: 0.360s;
}

.dropdown-items {
  font-weight: 400;

}

.dropdown-items li a {
  margin-left: 60px;
  font-size: 14px;
  border: 0 !important;
  padding: 10px;
  text-decoration: none;
  display: block;

}

/* Basic Page Layout*/

/*main h1,*/
/*main h2,*/
/*main article, main li {*/
  /*padding: 10px;*/
/*}*/

/*article ol,*/
/*article ul li {*/
  /*margin-left: 30px;*/

/*}*/

/* For Pcs */
@media only screen and (min-width: 480px) {
  .am-container {
    width: 240px;
    right: -240px;
  }

  .am-container.open {
    right: 0;
  }

  .virtual-page {
    width: 240px;
    position: absolute;
    top: 258px;
    right: 0 !important;
  }

  .virtual-header {
    position: absolute;
  }

  .light-box,
  li.light-box {
    width: 300px;
    background: #262626;
    height: 180px;
    border: 0;
    border-radius: 0px;
    box-shadow: 0;
    top: 84px;
    left: 260px;
    margin-top: 0;
    margin-left: 0;
    animation: bounceIn .7s forwards;
  }

  .light-box img {
    width: 300px;
    height: 180px;
    box-shadow: 0;
  }

  .dim-overlay {
    display: none !important;
  }

  .search-container {
    position: relative;
    opacity: 1;
  }

  .jam {
    overflow: auto;
    /*-webkit-scrollbar: display: inherit;*/

  }

  .search-trigger {
    display: none;
  }

}

/* end for pcs */

.iemel-menu-container {
  background: #39383d;
  top: 0;
}

.nav-logo{
  width: 160px;
  margin-top: 80px;
  margin-bottom: 40px;
  margin-right: 50px;
  float: right;
  clear: both;
}
.nav-logo img{
  width: 100%;
}
main{
  margin-right: 80px;
}

.subnav{
  text-align: center;
  position: fixed;
  top: 3%;
  right: 9%;
  z-index: 2;}
 .subnav .subnav-item {
    display: inline-block;
    transition: all 0.6s;.subnav-item
    cursor: pointer;
    position: relative;
    margin-right: 10px;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    color: #000;
    /* height: 40px; */
    line-height: 40px; }
   .subnav .subnav-item::after {
      content: "";
      position: absolute;
      bottom: -1px;
      width: 0px;
      height: 2px;
      background: #b52685;
      left: 0px;
      transition: all 0.6s; }
   .subnav .subnav-item:hover::after {
      width: 60px; }
 .subnav .subnav-item-active {
    position: relative; }
   .subnav .subnav-item-active::after {
      content: "";
      position: absolute;
      bottom: 0px;
      width: 60px;
      height: 2px;
      background: #b52685;
      left: 0px;
      transition: all 0.6s; }
      .subnav h4{
        font-size: 15px;
        color: #b52685;
        float: right;
        line-height: 40px;
      }
